home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Miscellaneous / Headlines Code / Jamie’s PD Code ƒ / JRandom.h < prev   
Text File  |  1992-06-20  |  740b  |  37 lines

  1. /*
  2.  * JRandom.h
  3.  *
  4.  * "JamieRandom": A hacked-up non-OOP version of version 1.1.1 of CRandom.
  5.  * CRandom is available by ftp from ftp.brown.edu in /pub/tcl/classes.
  6.  *
  7.  * JRandom.c and JRandom.h are in the public domain.
  8.  *
  9.  */
  10.  
  11.  
  12.  
  13. /******************************/
  14.  
  15. #pragma once
  16.  
  17. /******************************/
  18.  
  19. #define NRANDOMSLOTS (97)
  20. #define NDISTINCTRANDOMVALUES (714025)
  21.  
  22. /******************************/
  23.  
  24. typedef struct {
  25.     unsigned long        seeds[NRANDOMSLOTS];
  26.     unsigned long        dummy;
  27.     unsigned long        value;
  28. } jrStruct, *jrPtr;
  29.  
  30. /******************************/
  31.  
  32.  
  33.  
  34. extern void IJRandom(jrPtr theJRPtr);
  35. extern void jrSeed(jrPtr theJRPtr, unsigned long seedVal);
  36. extern short jrLinearShort(jrPtr theJRPtr, short lowest, short highest);
  37.